Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #32 from gforge/master
Browse files Browse the repository at this point in the history
Added linter as a package-deps - issue #16
  • Loading branch information
Arcanemagus committed Mar 23, 2016
2 parents 7c56b20 + 1878412 commit 0f80c90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/main.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports =
default: 'luac'
description: 'The executable path to luac or luajit.'
activate: ->
require('atom-package-deps').install('linter-lua');
@subscriptions = new CompositeDisposable
@subscriptions.add atom.config.observe 'linter-lua.executablePath', (executablePath) =>
@executablePath = executablePath
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@
},
"license": "MIT",
"dependencies": {
"atom-linter": "^4.6.1"
"atom-linter": "^4.6.1",
"atom-package-deps": "^4.0.1"
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
Expand Down

0 comments on commit 0f80c90

Please sign in to comment.