-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.bemhint.js
38 lines (36 loc) · 1.12 KB
/
.bemhint.js
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
module.exports = {
// cписок имен папок, которые являются уровнями переопределения
levels: [
'common',
'community',
'community-index',
'forum',
'index',
'methodology',
'methodology-index',
'technologies',
'technologies-classic-index',
'technologies-index',
'promo',
'toolbox',
'toolbox-index'
],
// список путей, которые будут проигнорированы при проверке
excludePaths: [
'node_modules/**',
'libs/**',
'blocks/common/article/article.css'
],
// список подключаемых плагинов, плагины подключаются
// относительно расположения конфигурационного файла
plugins: {
'bemhint-css-naming': {
excludeClasses: [
'hljs-*',
'article *'
]
},
'bemhint-fs-naming': true,
'bemhint-deps-specification': true
}
};