mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
29 lines
559 B
JSON
29 lines
559 B
JSON
{
|
|
"extends": ["onepass"],
|
|
"rules": {
|
|
"no-console": 0,
|
|
"no-extend-native": 0,
|
|
"react/jsx-filename-extension": [1, {
|
|
"extensions": [".jsx", "tsx"]
|
|
}],
|
|
"react/jsx-props-no-spreading": 0,
|
|
"jsx-a11y/label-has-associated-control": 0,
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"trailingComma": "es5",
|
|
"singleQuote": true,
|
|
"printWidth": 120,
|
|
"tabWidth": 4
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"node": {
|
|
"extensions": [".js", ".jsx", ".ts", ".tsx"],
|
|
"moduleDirectory": ["node_modules", "source/"]
|
|
}
|
|
}
|
|
}
|
|
} |