forked from sonata-project/SonataAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
36 lines (34 loc) · 883 Bytes
/
.eslintrc.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
/*!
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* DO NOT EDIT THIS FILE!
*
* It's auto-generated by sonata-project/dev-kit package.
*/
module.exports = {
parser: '@babel/eslint-parser',
extends: ['airbnb-base'],
env: {
browser: true,
jquery: true,
},
plugins: ['header'],
rules: {
'header/header': [2, 'block', [
'!',
' * This file is part of the Sonata Project package.',
' *',
' * (c) Thomas Rabaix <[email protected]>',
' *',
' * For the full copyright and license information, please view the LICENSE',
' * file that was distributed with this source code.',
' ',
], 2],
},
};