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