├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ └── issue-template.md └── workflows │ ├── dependency-review.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .prettierrc ├── .releaserc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── configs │ ├── index.ts │ └── recommended.ts ├── index.ts ├── rules │ ├── deprecation.ts │ └── index.ts └── utils │ └── stringifyJSDocTagInfoText.ts ├── tests ├── fixtures │ ├── deprecatedExports.tsx │ ├── file.native.ts │ └── file.react.tsx ├── rules │ └── deprecation.test.ts ├── tsconfig.test.json ├── typings │ └── jsx.d.ts └── utils │ └── get-rule-tester.ts ├── tsconfig.build.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.d.ts -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.github/ISSUE_TEMPLATE/issue-template.md -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .vscode 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/.releaserc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/package.json -------------------------------------------------------------------------------- /src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/src/configs/index.ts -------------------------------------------------------------------------------- /src/configs/recommended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/src/configs/recommended.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/rules/deprecation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/src/rules/deprecation.ts -------------------------------------------------------------------------------- /src/rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/src/rules/index.ts -------------------------------------------------------------------------------- /src/utils/stringifyJSDocTagInfoText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/src/utils/stringifyJSDocTagInfoText.ts -------------------------------------------------------------------------------- /tests/fixtures/deprecatedExports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/fixtures/deprecatedExports.tsx -------------------------------------------------------------------------------- /tests/fixtures/file.native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/fixtures/file.native.ts -------------------------------------------------------------------------------- /tests/fixtures/file.react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/fixtures/file.react.tsx -------------------------------------------------------------------------------- /tests/rules/deprecation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/rules/deprecation.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/tsconfig.test.json -------------------------------------------------------------------------------- /tests/typings/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/typings/jsx.d.ts -------------------------------------------------------------------------------- /tests/utils/get-rule-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tests/utils/get-rule-tester.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gund/eslint-plugin-deprecation/HEAD/tsconfig.json --------------------------------------------------------------------------------