@atlassian/eslint-plugin-aui-deprecation

ESLint rules for usage of deprecated AUI APIs.

Usage no npm install needed!

<script type="module">
  import atlassianEslintPluginAuiDeprecation from 'https://cdn.skypack.dev/@atlassian/eslint-plugin-aui-deprecation';
</script>

README

AUI deprecated API usage linter

This ESLint plugin contains rules to report usages of deprecated AUI APIs.

Usage

Include the plugin with npm install @atlassian/eslint-plugin-aui-deprecation and include it in your ESLint config file.

{
    "plugins": [
        "@atlassian/aui-deprecation"
    ],
    ...
}

By default, the plugin will report any deprecated AUI usage as an error. You will need to override this severity level inside your own ESLint config file.

{
    "@atlassian/aui-deprecation/no-dialog1": 0
}