mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 23:08:26 -04:00
11 lines
321 B
JavaScript
11 lines
321 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ["@jakejarvis/eslint-config", "preact", "plugin:jsx-a11y/recommended", "plugin:prettier/recommended"],
|
|
plugins: ["jsx-a11y", "prettier"],
|
|
parser: "@babel/eslint-parser",
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
},
|
|
ignorePatterns: ["public/**", "static/assets/**"],
|
|
};
|