Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/eslint-config / src / baseConfig.js
Size: Mime:
module.exports = {
  /**
   * @todo define in the consumer...
   * @see http://eslint.org/docs/user-guide/configuring#specifying-environments
   */
  env: {
    es6: true,
    node: true,
    browser: true,
    jest: true,
  },

  /**
   * @see http://eslint.org/docs/user-guide/configuring#specifying-parser-options
   */
  parserOptions: {
    ecmaVersion: 2019,
    sourceType: 'module',
    ecmaFeatures: {
      jsx: true,
      modules: true,
      impliedStrict: true,
      // experimentalObjectRestSpread: true,
      // globalReturn: false,
    },
  },
}