Skip to content
This repository has been archived by the owner on Dec 17, 2019. It is now read-only.

Commit

Permalink
upgrading to use getPaths (1.0 API)
Browse files Browse the repository at this point in the history
fixes #32
  • Loading branch information
tcarlsen committed Apr 20, 2015
1 parent ec8cd22 commit f67b8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ fs = require("fs")

module.exports = ->
defaultConfigPath = path.normalize(path.join(process.env.HOME or process.env.HOMEPATH, ".jslintrc"))
projectConfigPath = path.normalize(path.join(atom.project.getPath(), ".jslintrc"))
projectConfigPath = path.normalize(path.join(atom.project.getPaths()[0], ".jslintrc"))
config = {}

try
Expand Down

0 comments on commit f67b8b0

Please sign in to comment.