eslint-plugin-googshift

Custom ESLint rules for checking Google Compiler projects

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-plugin-googshift
010.9.36 years ago6 years agoMinified + gzip package size for eslint-plugin-googshift in KB

Readme

Custom ESLint Rules for Google Compiler projects
This package is used as an ESLint plugin for the Google Compiler projects. The rules are meant to help with the transition away from the Closure Library and may be removed when that is complete.
Example use
In your .eslintrc.yaml:
{
  extends: [
    ...,
    '.eslintrc-googshift.yaml'
  ]
}

In a dedicated eslintrc file .eslintrc-googshift.yaml:
{
  plugins: [
    'googshift'
  ],
  rules: {
    'googshift/no-duplicate-requires': 'error',

    'googshift/no-missing-requires': ['error', {
      prefixes: ['app', 'ol', 'ngeo'],
      exceptions: ['ngeo.module.requires.push']
    }],

    'googshift/no-unused-requires': 'error',

    'googshift/one-provide-or-module': ['error', {
      entryPoints: ['app'],
      root: 'suissealpine/static'
    }],

    'googshift/requires-first': 'error',

    'googshift/valid-provide-and-module': ['error', {
      entryPoints: ['app'],
      root: 'suissealpine/static'
    }],

    'googshift/valid-requires': 'error'
  }
}
Acknowledgments
This work is a continuation and generalization of an initial work from Tim Schaub.