Skip to content

Commit 3aec4ca

Browse files
committed
fix: correct eslint config
1 parent efdf9fe commit 3aec4ca

File tree

3 files changed

+22
-13
lines changed

3 files changed

+22
-13
lines changed

.eslintrc

+12-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,20 @@
55
],
66
"root": true,
77
"rules": {
8+
"canonical/destructuring-property-newline": 0,
9+
"canonical/export-specifier-newline": 0,
10+
"canonical/filename-match-exported": 0,
11+
"canonical/filename-match-regex": 0,
12+
"canonical/id-match": 0,
13+
"canonical/import-specifier-newline": 0,
14+
"canonical/no-use-extend-native": 0,
15+
"require-unicode-regexp": 0,
16+
"canonical/sort-keys": 0,
17+
"filenames/match-regex": 0,
818
"flowtype/no-weak-types": 0,
919
"flowtype/require-parameter-type": 0,
10-
"flowtype/require-return-type": 0
20+
"flowtype/require-return-type": 0,
21+
"no-undef": 0
1122
},
1223
"plugins": [
1324
"promise"

examples/src/youtube-player.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* eslint-disable filenames/match-regex */
2-
31
import YouTubePlayer from 'youtube-player';
42

53
global.YouTubePlayer = YouTubePlayer;

examples/webpack.config.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* eslint-disable filenames/match-regex, import/no-commonjs */
1+
/* eslint-disable import/no-commonjs */
22

33
const path = require('path');
44
const webpack = require('webpack');
@@ -11,29 +11,29 @@ module.exports = {
1111
host: '127.0.0.1',
1212
hot: false,
1313
noInfo: false,
14-
port: 8000,
14+
port: 8_000,
1515
publicPath: '/',
16-
quiet: false
16+
quiet: false,
1717
},
1818
devtool: 'source-map',
1919
entry: {
20-
'youtube-player': './youtube-player.js'
20+
'youtube-player': './youtube-player.js',
2121
},
2222
module: {
2323
loaders: [
2424
{
2525
include: path.resolve(__dirname, './src'),
2626
loader: 'babel-loader',
27-
test: /\.js$/
28-
}
29-
]
27+
test: /\.js$/,
28+
},
29+
],
3030
},
3131
output: {
3232
filename: '[name].js',
3333
path: __dirname,
34-
publicPath: '/'
34+
publicPath: '/',
3535
},
3636
plugins: [
37-
new webpack.NoEmitOnErrorsPlugin()
38-
]
37+
new webpack.NoEmitOnErrorsPlugin(),
38+
],
3939
};

0 commit comments

Comments
 (0)