Created
March 31, 2021 15:40
-
-
Save alexalannunes/e5c1edd71b00e4eac5bc1ce0045fdfd7 to your computer and use it in GitHub Desktop.
my little rules of eslint
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
| "rules": { | |
| "arrowParens": "always", | |
| "bracketSpacing": true, | |
| "endOfLine": "lf", | |
| "htmlWhitespaceSensitivity": "css", | |
| "insertPragma": false, | |
| "jsxBracketSameLine": false, | |
| "jsxSingleQuote": false, | |
| "printWidth": 220, | |
| "proseWrap": "preserve", | |
| "quoteProps": "as-needed", | |
| "requirePragma": false, | |
| "semi": "off", | |
| "singleQuote": false, | |
| "tabWidth": 2, | |
| "trailingComma": "es5", | |
| "useTabs": false, | |
| "vueIndentScriptAndStyle": false, | |
| "filepath": "/home/alexalannunes/Documentos/curso/.eslintrc.json", | |
| "parser": "json" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment