Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SrBrahma committed Dec 22, 2023
1 parent 27393c4 commit cb67789
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.3

- Improve generated comment

## 1.0.2

- Improve Readme
Expand Down
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/**
* File automatically created TODO write some here
* File automatically created by scripts/index.ts.
*
* These are ESLint rules that have corresponding and recommended Biome rules.
*/
module.exports = {
rules: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-biome",
"version": "1.0.2",
"version": "1.0.3",
"description": "Disables all the ESLint rules that have a recommended and equivalent Biome rule",
"main": "index.js",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions scripts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,14 @@ const getEslintEquivalentRules = async (): Promise<Array<string>> => {
getEslintEquivalentRulesForPlugin(plugin, document),
)

// console.log("ESLint rules:/n", eslintRules)
return eslintRules
}

const writeFile = (rules: Array<string>) => {
const text = `/**
* File automatically created TODO write some here
* File automatically created by scripts/index.ts.
*
* These are ESLint rules that have corresponding and recommended Biome rules.
*/
module.exports = {
rules: {
Expand Down

0 comments on commit cb67789

Please sign in to comment.