@hireupau/eslint-plugin-hu-vue
v0.2.0
Published
Hireup's vue eslint rules
Downloads
3
Keywords
Readme
eslint-plugin-hu-vue
Hireup's ESLint plugin for Vue specific rules
Contributing
- Create a new rule and its associated unit tests
- Add the rule to a config (e.g recommended)
- Test your rules against another repository (e.g argos)
- Create a PR and merge your changes to master once you have an approval
- Checkout master and release a new version (see Semantic Versioning & npm version links below):
npm version [<newversion> | major | minor | patch]
Resources
- AST Play - Helps you understand what the AST (Abstract Syntax Tree) of the code you want to check looks like (make sure to check vue/jsx)
- AST Explorer - Another AST generator with more features than AST Play, but not as much support for Vue
- npm version - Used for publishing new NPM packages
- Semantic Versioning - Helps you to determine how you should be incrementing the version number
- ESLint plugin Vue - Find inspiration for how a rule could potentially be written
- ESLint - Working with Rules - ESLint rule documentation & examples