Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hirse committed May 2, 2019
1 parent a4d5d57 commit 5106570
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 63 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.
This project tries to adhere to [Semantic Versioning](http://semver.org/).


## 1.1.0 - 2019-05-01
### Changed
- Updated `detect-indent` to version 6.0.0

### Fixed
- Use first occurrence for files with equal indentation
114 changes: 57 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hirse.brackets-detect-indentation",
"title": "Brackets Detect Indentation",
"version": "1.0.0",
"version": "1.1.0",
"description": "Detects the indentation used in the current document and sets the editor settings accordingly.",
"engines": {
"brackets": ">=1.11.0"
Expand All @@ -27,10 +27,10 @@
}
},
"dependencies": {
"detect-indent": "5.0.0"
"detect-indent": "6.0.0"
},
"devDependencies": {
"eslint": "5.14.x",
"eslint": "5.16.x",
"tar-to-zip": "2.0.x"
},
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions test/equal-spaces.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This file should change the indentation setting to *spaces*
4 spaces
1 tab
3 changes: 3 additions & 0 deletions test/equal-tabs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This file should change the indentation setting to *tabs*
1 tab
4 spaces
3 changes: 0 additions & 3 deletions test/equal.txt

This file was deleted.

0 comments on commit 5106570

Please sign in to comment.