-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheslint.config.cjs
56 lines (55 loc) · 2.05 KB
/
eslint.config.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const config = require('@silvermine/eslint-config'),
node = require('@silvermine/eslint-config/partials/node');
module.exports = [
{
ignores: [
'dist-js/**',
'src-tauri/**',
'examples/tauri-app/src-tauri/**',
],
},
...config,
{ ...node },
{
files: [ '**/*.vue' ],
rules: {
// We have to disable the no-deprecated-slot-attribute rule for this project
// because there is an unfortunate naming collision between Vue's deprecated
// 'slot' prop (https://vuejs.org/guide/components/slots.html) and the
// 'slot' attribute that Ionic uses on many of its components. At its lowest
// level, Ionic components are actually Web Components.
//
// Web Components use a 'slot' attribute to allow parent components to define
// content that appears in specified locations within the child component:
// https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_templates_and_slots#adding_flexibility_with_slots
'vue/no-deprecated-slot-attribute': 'off',
// Ionic provides methods on objects (like Ion-Nav) that are passed as props
// to child components. Methods like `.pop()` and `.push()` interact with the
// `nav` object, by invoking navigation actions which alters the UI but not the
// prop's data. The `vue/no-mutating-props` rule flags these usages as errors.
// Disabling this rule allows us to properly use Ionic's navigation API without
// false positives.
'vue/no-mutating-props':
[
'error',
{
'shallowOnly': true,
},
],
},
},
{
files: [ '**/*.vue', '**/*.ts' ],
rules: {
// During prototype development we will allow console logging, except for "log"
'no-console': 'off',
'no-restricted-properties': [
2,
{
'object': 'console',
'property': 'log',
},
],
},
},
];