21 lines
393 B
JavaScript
21 lines
393 B
JavaScript
import prettier from "eslint-config-prettier";
|
|
import eslintPluginPrettier from "eslint-plugin-prettier";
|
|
|
|
export default [
|
|
{
|
|
ignores: ["node_modules/**", "dist/**"],
|
|
},
|
|
{
|
|
languageOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
},
|
|
plugins: {
|
|
prettier: eslintPluginPrettier,
|
|
},
|
|
rules: {
|
|
"prettier/prettier": "error",
|
|
},
|
|
},
|
|
];
|