Skip to content

Commit e4136d7

Browse files
committed
chore: Update package name to @ezycourse/eslint-plugin
1 parent c7f2dd5 commit e4136d7

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

docs/rules/no-axios-import.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Disallow direct import of axio (`@ezycourse/no-axios-import`)
1+
# Disallow direct import of axios (`@ezycourse/no-axios-import`)
22

33
🔧 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
44

lib/rules/no-axios-import.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @fileoverview Disallow direct import of axio
2+
* @fileoverview Disallow direct import of axios
33
* @author Najmus Sakib
44
*/
55
"use strict";
@@ -13,10 +13,10 @@ module.exports = {
1313
meta: {
1414
type: "problem",
1515
docs: {
16-
description: "Disallow direct import of axio",
16+
description: "Disallow direct import of axios",
1717
category: "Best Practices",
1818
recommended: false,
19-
url: null, // URL to the documentation page for this rule
19+
url: 'https://github.com/AppifyLab/eslint-plugin/blob/main/docs/rules/no-axios-import.md',
2020
},
2121
fixable: 'code',
2222
schema: [], // Add a schema if the rule has options

lib/rules/no-react-i18next-import.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
/** @type {import('eslint').Rule.RuleModule} */
1212
module.exports = {
1313
meta: {
14-
type: 'problem', // `problem`, `suggestion`, or `layout`
14+
type: 'problem',
1515
docs: {
1616
description: "Enforce using next-i18next instead of react-i18next",
1717
category: "Best Practices",
18-
recommended: true,
19-
url: null, // URL to the documentation page for this rule
18+
recommended: false,
19+
url: 'https://github.com/AppifyLab/eslint-plugin/blob/main/docs/rules/no-react-i18next-import.md',
2020
},
2121
fixable: 'code', // Or `code` or `whitespace`
2222
schema: [], // Add a schema if the rule has options

0 commit comments

Comments
 (0)