diff --git a/.eslintignore b/.eslintignore index 4c3cf9d..2ae0127 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,7 +1,4 @@ node_modules/ - -# Ignore artifacts: -build/ coverage/ dist/ -storybook-static/ + diff --git a/.eslintrc b/.eslintrc index 13c5b7d..e21e374 100644 --- a/.eslintrc +++ b/.eslintrc @@ -3,8 +3,7 @@ "browser": true, "es2022": true }, - "extends": ["standard-with-typescript", "prettier"], - "plugins": ["prettier"], + "extends": ["standard-with-typescript", "plugin:prettier/recommended"], "parserOptions": { "ecmaVersion": "latest", "sourceType": "module", @@ -12,7 +11,6 @@ }, "rules": { "no-console": "warn", - "prettier/prettier": ["error"], "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/consistent-indexed-object-style": [ "error", diff --git a/.prettierrc b/.prettierrc index e4a8e67..7f5dba4 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,4 @@ { "bracketSpacing": false, - "singleQuote": true, - "trailingComma": "all" + "singleQuote": true } diff --git a/.vscode/settings.json b/.vscode/settings.json index ae77e68..f6e8462 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,7 +16,6 @@ "search.exclude": { "**/node_modules": true, "lib": true, - "dist/": true, - "storybook-static/": true + "dist/": true } }