mirror of
https://github.com/jakejarvis/stitches-normalize.git
synced 2025-04-25 23:25:23 -04:00
22 lines
373 B
JSON
22 lines
373 B
JSON
{
|
|
"extends": [
|
|
"@jakejarvis/eslint-config",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"env": {
|
|
"node": true,
|
|
"browser": false
|
|
},
|
|
"rules": {
|
|
"quote-props": "off",
|
|
"@typescript-eslint/ban-ts-comment": "off"
|
|
},
|
|
"ignorePatterns": [
|
|
"dist/**"
|
|
]
|
|
}
|