mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
30 lines
627 B
JSON
30 lines
627 B
JSON
{
|
|
"env": {
|
|
"jest": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"extends": ["prettier"],
|
|
"plugins": ["prettier"],
|
|
"rules": {
|
|
"camelcase": ["error", { "allow": ["^unstable_"] }],
|
|
"no-unused-vars": [2, { "args": "all", "argsIgnorePattern": "^_" }],
|
|
"no-warning-comments": 0,
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"trailingComma": "es5",
|
|
"bracketSpacing": true,
|
|
"parser": "flow"
|
|
}
|
|
]
|
|
}
|
|
}
|