mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-09 13:48:11 -05:00
chore: update .prettierignore to include /out directory docs: update LICENSE file to include link to author's GitHub profile chore: update tsconfig.json to move resolveJsonModule above moduleResolution for consistency
34 lines
865 B
JSON
34 lines
865 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["simple-import-sort", "import", "@typescript-eslint", "prettier"],
|
|
"settings": {
|
|
"import/resolver": {
|
|
"node": {
|
|
"extensions": [".js", ".jsx", ".ts", ".tsx"]
|
|
}
|
|
}
|
|
},
|
|
"packageManager": "npm",
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"no-console": "error",
|
|
"import/order": "off",
|
|
"sort-imports": "off",
|
|
"simple-import-sort/imports": "error",
|
|
"simple-import-sort/exports": "error",
|
|
"import/first": "error",
|
|
"import/newline-after-import": "error",
|
|
"import/no-duplicates": "error",
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
|
}
|
|
}
|