Skip to content

Commit

Permalink
Fix: remove Node.js and CommonJS category from build process (#13242)
Browse files Browse the repository at this point in the history
* Fix: Remove Node.js and CommonJS category from build process

* Remove categories that do not contain any rules
  • Loading branch information
kaicataldo committed May 8, 2020
1 parent 401a687 commit 4c0b028
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile.js
Expand Up @@ -210,6 +210,9 @@ function generateRuleIndexPage() {
}
});

// `.rules` will be `undefined` if all rules in category are deprecated.
categoriesData.categories = categoriesData.categories.filter(category => !!category.rules);

const output = yaml.safeDump(categoriesData, { sortKeys: true });

output.to(outputFile);
Expand Down
1 change: 0 additions & 1 deletion conf/category-list.json
Expand Up @@ -4,7 +4,6 @@
{ "name": "Best Practices", "description": "These rules relate to better ways of doing things to help you avoid problems:" },
{ "name": "Strict Mode", "description": "These rules relate to strict mode directives:" },
{ "name": "Variables", "description": "These rules relate to variable declarations:" },
{ "name": "Node.js and CommonJS", "description": "These rules relate to code running in Node.js, or in browsers with CommonJS:" },
{ "name": "Stylistic Issues", "description": "These rules relate to style guidelines, and are therefore quite subjective:" },
{ "name": "ECMAScript 6", "description": "These rules relate to ES6, also known as ES2015:" }
],
Expand Down

0 comments on commit 4c0b028

Please sign in to comment.