Last active
April 13, 2022 12:18
-
-
Save brrd/659446f39de4d70de2e334ba34ef5f67 to your computer and use it in GitHub Desktop.
Defaults
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | |
"version": "0.2", | |
"language": "fr", | |
"ignorePaths": ["node_modules"] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# top-most EditorConfig file | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = crlf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
[*.{json,yaml,yml}] | |
indent_style = space | |
indent_size = 2 | |
[*.{html,njk,xml}] | |
indent_style = tab | |
indent_size = 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"env": { | |
"commonjs": true, | |
"es2021": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"ecmaVersion": 12 | |
}, | |
"rules": { | |
"indent": [ | |
"error", | |
2 | |
], | |
"linebreak-style": [ | |
"error", | |
"windows" | |
], | |
"no-unused-vars": [ | |
"error", | |
{ | |
"args": "none" | |
} | |
], | |
"quotes": [ | |
"error", | |
"double" | |
], | |
"semi": [ | |
"error", | |
"always" | |
] | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"default": true, | |
"line-length": false, | |
"no-trailing-punctuation": { "punctuation" : ".,;:" }, | |
"no-inline-html": false, | |
"no-bare-urls": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment