mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 01:12:40 +08:00
346d219cd5
* chore: reorder imports manually * chore: remove unused less
33 lines
802 B
JSON
33 lines
802 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["react", "@typescript-eslint", "prettier"],
|
|
"ignorePatterns": ["node_modules", "dist", "public"],
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"endOfLine": "auto"
|
|
}
|
|
],
|
|
"@typescript-eslint/no-empty-interface": ["off"],
|
|
"@typescript-eslint/no-explicit-any": ["off"],
|
|
"react/react-in-jsx-scope": "off"
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
}
|
|
}
|
|
}
|