charticulator/.eslintrc.js

22 строки
429 B
JavaScript

module.exports = {
env: {
"browser": true,
"es6": true,
"es2017": true
},
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
tsconfigRootDir: ".",
},
plugins: [
"powerbi-visuals"
],
extends: [
"plugin:powerbi-visuals/recommended",
"plugin:react-hooks/recommended"
],
rules: {}
};