UNPKG

flagstrap-preact

Version:

Flagstrap jquery plugin version for Preact

28 lines (25 loc) 620 B
'use strict'; // http://survivejs.com/webpack/developing-with-webpack/linting/ // rules: http://eslint.org/docs/rules/ // 0 - The rule has been disabled. // 1 - The rule will emit a warning. // 2 - The rule will emit an error. module.exports = { env: { browser: true, commonjs: true, es6: true, node: true }, extends: ['standard', 'standard-preact'], rules: { indent: ['error', 2], quotes: ['error', 'single'], semi: ['error', 'always'], 'no-unused-vars': ['warn'], 'no-control-regex': 0, 'no-console': 0, 'padded-blocks': 0, 'react/jsx-boolean-value': 1 } };