We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
root = true [*] charset = utf-8 end_of_line = lf insert_final_newline = true indent_style = space indent_size = 4 trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false [*.yml] indent_size = 2 [*.js] indent_size = 2
module.exports = { "env": { "browser": true, "es6": true }, "extends": "eslint:recommended", "parserOptions": { "sourceType": "module" }, "rules": { "indent": [ "error", 4 ], "linebreak-style": [ "error", "unix" ], "quotes": [ "error", "single" ], "semi": [ "error", "never" ] } };
{ "printWidth": 80, "tabWidth": 2, "useTabs": false, "singleQuote": true, "trailingComma": "es5", "bracketSpacing": true, "jsxBracketSameLine": false, "semi": false, "requirePragma": false, "proseWrap": "preserve", "arrowParens": "avoid", "overrides": [ { "files": "resources/css/**/*.css", "options": { "tabWidth": 2 } } ] }
js: tab-width: 2 use-tabs: false print-width: 80 double-quotes: false trailing-commas: es5 semicolons: false arrow-parens: avoid bracket-spacing: true finder: exclude: - build - dist - node_modules name: - '*.js' - '*.jsx' not-name: - '*.min.js'
The text was updated successfully, but these errors were encountered:
zhorton34
No branches or pull requests
The text was updated successfully, but these errors were encountered: