eslint ignore v html

Solutions on MaxInterview for eslint ignore v html by the best coders in the world

showing results for - "eslint ignore v html"
Tim
12 Jan 2018
1    <!-- eslint-disable-next-line vue/no-v-html -->
2    <p class="post-excerpt" v-html="post.excerpt || post.frontmatter.description || '' " />
Lilah
21 Apr 2019
1module.exports = {
2  root: true,
3  env: {
4    browser: true,
5    node: true
6  },
7  parserOptions: {
8    parser: 'babel-eslint'
9  },
10  extends: [
11    '@nuxtjs',
12    'plugin:nuxt/recommended'
13  ],
14  // add your custom rules here
15  rules: {
16    'nuxt/no-cjs-in-config': 'off',
17    'vue/no-v-html': 0,
18    'no-console': 0
19  }
20}
21
similar questions
queries leading to this page
eslint ignore v html