webpack-build-speaker
Version:
A Webpack plugin that speaks notifications for build steps using the Mac OS X say command.
36 lines (32 loc) • 594 B
Plain Text
# So parent files don't get applied
root: true
env:
browser: true
node: true
rules:
# Errors
comma-dangle: [2, "never"]
no-var: 0
no-dupe-keys: 2
eqeqeq: [2, allow-null]
yoda: 2
no-unused-expressions: 2
dot-notation: 2
dot-location: [2, property]
no-undef: 2
comma-spacing: 2
jsx-quotes: [2, prefer-double]
# Disabled
key-spacing: 0
no-underscore-dangle: 0
no-shadow: 0
no-shadow-restricted-names: 0
no-extend-native: 0
curly: 0
new-cap: 0
quotes: 0
semi-spacing: 0
space-unary-ops: 0
space-infix-ops: 0
consistent-return: 0
strict: 0