File tree Expand file tree Collapse file tree 5 files changed +31
-16
lines changed Expand file tree Collapse file tree 5 files changed +31
-16
lines changed Original file line number Diff line number Diff line change
1
+ /** DON'T EDIT THIS FILE; was created by scripts. */
2
+ 'use strict'
3
+
4
+ module . exports = {
5
+ 'recommended' : require ( './configs/recommended' )
6
+ }
Original file line number Diff line number Diff line change
1
+ /** DON'T EDIT THIS FILE; was created by scripts. */
2
+ 'use strict'
3
+
4
+ module . exports = {
5
+ plugins : [ 'vue-i18n' ] ,
6
+ rules : {
7
+ 'vue-i18n/no-missing-key' : 'error'
8
+ }
9
+ }
Original file line number Diff line number Diff line change 4
4
*/
5
5
'use strict'
6
6
7
- // ------------------------------------------------------------------------------
8
- // Requirements
9
- // ------------------------------------------------------------------------------
10
-
11
- // ------------------------------------------------------------------------------
12
- // Plugin Definition
13
- // ------------------------------------------------------------------------------
14
-
15
- // import all rules in lib/rules
16
- module . exports . rules = {
17
- 'no-missing-key' : require ( './rules/no-missing-key' )
18
- }
19
-
20
- // import processors
21
- module . exports . processors = {
22
- // add your processors here
7
+ module . exports = {
8
+ configs : require ( './configs' ) ,
9
+ rules : require ( './rules' ) ,
10
+ processors : { }
23
11
}
Original file line number Diff line number Diff line change
1
+ /** DON'T EDIT THIS FILE; was created by scripts. */
2
+ 'use strict'
3
+
4
+ module . exports = {
5
+ 'no-missing-key' : require ( './rules/no-missing-key' )
6
+ }
Original file line number Diff line number Diff line change
1
+ /** DON'T EDIT THIS FILE; was created by scripts. */
2
+ 'use strict'
3
+
4
+ module . exports = {
5
+ 'index' : require ( './utils/index' )
6
+ }
You can’t perform that action at this time.
0 commit comments