├── .coffeelintignore ├── .github └── no-response.yml ├── .gitignore ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── appveyor.yml ├── coffeelint.json ├── lib ├── deprecation-cop-status-bar-view.coffee ├── deprecation-cop-view.js └── main.js ├── package.json ├── spec ├── deprecation-cop-spec.coffee ├── deprecation-cop-status-bar-view-spec.coffee └── deprecation-cop-view-spec.coffee └── styles └── deprecation-cop.less /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/appveyor.yml -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/coffeelint.json -------------------------------------------------------------------------------- /lib/deprecation-cop-status-bar-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/lib/deprecation-cop-status-bar-view.coffee -------------------------------------------------------------------------------- /lib/deprecation-cop-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/lib/deprecation-cop-view.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/package.json -------------------------------------------------------------------------------- /spec/deprecation-cop-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/spec/deprecation-cop-spec.coffee -------------------------------------------------------------------------------- /spec/deprecation-cop-status-bar-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/spec/deprecation-cop-status-bar-view-spec.coffee -------------------------------------------------------------------------------- /spec/deprecation-cop-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/spec/deprecation-cop-view-spec.coffee -------------------------------------------------------------------------------- /styles/deprecation-cop.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/deprecation-cop/HEAD/styles/deprecation-cop.less --------------------------------------------------------------------------------