aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: c2607a8497a9b7afbd196f544ea90dccf88f2ede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  root: true,
  env: {
    browser: true,
    node: true
  },
  extends: [
    '@nuxtjs/eslint-config-typescript',
    'plugin:nuxt/recommended'
  ],
  plugins: [
  ],
  // add your custom rules here
  rules: {}
}