Skip to content

Commit

Permalink
fix config files
Browse files Browse the repository at this point in the history
  • Loading branch information
TimurRin committed May 15, 2024
1 parent 68f6231 commit 012c1c9
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
# General
**/.git
**/.svn
**/.hg

# Node.js
**/node_modules
package-lock.json

# Cinnabar Forge
**/cinnabar.js
cinnabar.json
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"env": {
"mocha": true
},
"extends": ["plugin:@cinnabar-forge/default"],
"parserOptions": {
"sourceType": "module"
Expand Down
35 changes: 30 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,23 @@ yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

node_modules
*.local
# Dependency directories
node_modules/
jspm_packages/
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.yarn-integrity

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Editor directories and files
.idea
Expand All @@ -18,13 +32,24 @@ node_modules
*.njsproj
*.sln
*.sw?
.vscode

# Built sources
/dist
/build
*.spec

# Output of 'npm pack'
*.tgz

# Local settings
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
config.json

# Data
/data
/public/assets

# Developer files
/dev
12 changes: 12 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# General
**/.git
**/.svn
**/.hg

# Node.js
**/node_modules
package-lock.json

# Cinnabar Forge
**/cinnabar.js
cinnabar.json

0 comments on commit 012c1c9

Please sign in to comment.