mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
18 lines
376 B
JSON
18 lines
376 B
JSON
{
|
|
"extends": ["airbnb-base", "prettier"],
|
|
"plugins": ["import", "prettier"],
|
|
"rules": {
|
|
"no-console": ["error", { "allow": ["warn", "error"] }],
|
|
"no-param-reassign": "off",
|
|
"no-shadow": "off",
|
|
"no-use-before-define": "off",
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"singleQuote": true,
|
|
"trailingComma": "all"
|
|
}
|
|
]
|
|
}
|
|
}
|