Skip to content

Instantly share code, notes, and snippets.

@alexalannunes
Created March 31, 2021 15:40
Show Gist options
  • Select an option

  • Save alexalannunes/e5c1edd71b00e4eac5bc1ce0045fdfd7 to your computer and use it in GitHub Desktop.

Select an option

Save alexalannunes/e5c1edd71b00e4eac5bc1ce0045fdfd7 to your computer and use it in GitHub Desktop.
my little rules of eslint
"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