Skip to content

Commit

Permalink
sync-server: synced file(s) with lumirlumir/lumirlumir-configs (#42)
Browse files Browse the repository at this point in the history
* sync-server: synced local './.vscode/settings.json' with remote './configs/.vscode/settings.json'

* sync-server: synced local './.eslintignore' with remote './configs/.eslintignore'

* sync-server: synced local './.gitignore' with remote './configs/.gitignore'

* sync-server: synced local './.prettierignore' with remote './configs/.prettierignore'
  • Loading branch information
lumirlumir authored Aug 26, 2024
1 parent 89b8068 commit 1ca1956
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# dependencies
node_modules

# production
build
.next

# package
package-lock.json
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_modules

# production
build
.next

# env
.env
Expand Down
18 changes: 17 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# dependencies
node_modules

# production
build
.markdownlintignore
.next

# env
.env
.env.development
.env.production

# tests
.nyc_output
coverage

# package
package-lock.json

# markdown
*.md
8 changes: 5 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": "always",
"source.fixAll.eslint": "always"
}
"source.fixAll.eslint": "always",
"source.fixAll.stylelint": "always",
"source.fixAll.markdownlint": "always"
},
"stylelint.validate": ["css", "scss"]
}

0 comments on commit 1ca1956

Please sign in to comment.