Skip to content

Commit

Permalink
Update references to Brigade
Browse files Browse the repository at this point in the history
Now that this repository has migrated owners, update links
appropriately.
  • Loading branch information
sds committed May 2, 2019
1 parent 4ee2679 commit 82b083d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## 0.56.0

* Add support for Sass 3.5. [Custom properties are not yet supported](https://github.com/brigade/scss-lint/pull/927).
* Add support for Sass 3.5. [Custom properties are not yet supported](https://github.com/sds/scss-lint/pull/927).
* Modify all output formats to include a linter even for syntax or encoding errors
* Fix `SpaceAfterComment` to not report lints for [file-level annotation comments](http://sassdoc.com/file-level-annotations/)

Expand Down
3 changes: 1 addition & 2 deletions MIT-LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Copyright (c) 2014-2015 Brigade
http://www.brigade.com/
Copyright (c) Shane da Silva

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[![Gem Version](https://badge.fury.io/rb/scss_lint.svg)](http://badge.fury.io/rb/scss_lint)
[![Build Status](https://travis-ci.org/brigade/scss-lint.svg?branch=master)](https://travis-ci.org/brigade/scss-lint)
[![Code Climate](https://codeclimate.com/github/brigade/scss-lint.svg)](https://codeclimate.com/github/brigade/scss-lint)
[![Coverage Status](https://coveralls.io/repos/brigade/scss-lint/badge.svg)](https://coveralls.io/r/brigade/scss-lint)
[![Inline docs](http://inch-ci.org/github/brigade/scss-lint.svg?branch=master)](http://inch-ci.org/github/brigade/scss-lint)
[![Build Status](https://travis-ci.org/sds/scss-lint.svg?branch=master)](https://travis-ci.org/sds/scss-lint)
[![Code Climate](https://codeclimate.com/github/sds/scss-lint.svg)](https://codeclimate.com/github/sds/scss-lint)
[![Coverage Status](https://coveralls.io/repos/sds/scss-lint/badge.svg)](https://coveralls.io/r/sds/scss-lint)
[![Inline docs](http://inch-ci.org/github/sds/scss-lint.svg?branch=master)](http://inch-ci.org/github/sds/scss-lint)

<p align="center">
<img src="https://raw.githubusercontent.com/brigade/scss-lint/master/logo/horizontal.png" width="40%" alt="SCSS-Lint Logo"/>
<img src="https://raw.githubusercontent.com/sds/scss-lint/master/logo/horizontal.png" width="40%" alt="SCSS-Lint Logo"/>
</p>

`scss-lint` is a tool to help keep your [SCSS](http://sass-lang.com) files
clean and readable by running it against a collection of
configurable [linter rules](lib/scss_lint/linter/README.md). You can run it
manually from the command line, or integrate it into your
[SCM hooks](https://github.com/brigade/overcommit).
[SCM hooks](https://github.com/sds/overcommit).

# NOTICE: Consider other tools before adopting SCSS-Lint

Expand Down Expand Up @@ -415,7 +415,7 @@ Exit Status | Description
`64` | Command line usage error (invalid flag, etc.)
`66` | One or more files specified were not found
`69` | Required library specified via `-r`/`--require` flag was not found
`70` | Unexpected error (i.e. a bug); please [report it](https://github.com/brigade/scss-lint/issues)
`70` | Unexpected error (i.e. a bug); please [report it](https://github.com/sds/scss-lint/issues)
`78` | Invalid configuration file; your [YAML](http://www.yaml.org/) is likely incorrect
`80` | Files glob patterns specified did not match any files.

Expand Down Expand Up @@ -571,7 +571,7 @@ If you use `Visual Studio Code`, you can install the [scss-lint](https://marketp
## Git Integration

If you'd like to integrate `scss-lint` into your Git workflow, check out our
Git hook manager, [overcommit](https://github.com/brigade/overcommit).
Git hook manager, [overcommit](https://github.com/sds/overcommit).

## Rake Integration

Expand Down Expand Up @@ -633,7 +633,7 @@ installation of `ruby` or `scss-lint` is not required.

[Code documentation] is generated with [YARD] and hosted by [RubyDoc.info].

[Code documentation]: http://rdoc.info/github/brigade/scss-lint/master/frames
[Code documentation]: http://rdoc.info/github/sds/scss-lint/master/frames
[YARD]: http://yardoc.org/
[RubyDoc.info]: http://rdoc.info/

Expand All @@ -659,7 +659,7 @@ bundle exec bin/scss-lint
## Community

All major discussion surrounding SCSS-Lint happens on the
[GitHub issues page](https://github.com/brigade/scss-lint/issues).
[GitHub issues page](https://github.com/sds/scss-lint/issues).

You can also follow [@scss_lint on Twitter](https://twitter.com/scss_lint).

Expand All @@ -673,7 +673,7 @@ of `scss-lint`, read the [SCSS-Lint Changelog](CHANGELOG.md).
This project adheres to the [Open Code of Conduct][code-of-conduct]. By
participating, you are expected to honor this code.

[code-of-conduct]: https://github.com/brigade/code-of-conduct
[code-of-conduct]: https://github.com/civiccc/code-of-conduct

## License

Expand Down
2 changes: 1 addition & 1 deletion lib/scss_lint/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ module SCSSLint
SCSS_LINT_HOME = File.realpath(File.join(File.dirname(__FILE__), '..', '..')).freeze
SCSS_LINT_DATA = File.join(SCSS_LINT_HOME, 'data').freeze

REPO_URL = 'https://github.com/brigade/scss-lint'.freeze
REPO_URL = 'https://github.com/sds/scss-lint'.freeze
BUG_REPORT_URL = "#{REPO_URL}/issues".freeze
end
2 changes: 1 addition & 1 deletion lib/scss_lint/linter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def location_from_range(range) # rubocop:disable Metrics/AbcSize
line_source.length - range.start_pos.offset + 1
end

# Workaround for https://github.com/brigade/scss-lint/issues/887 to acount for
# Workaround for https://github.com/sds/scss-lint/issues/887 to acount for
# https://github.com/sass/sass/issues/2284.
length = 1 if length < 1

Expand Down
4 changes: 2 additions & 2 deletions lib/scss_lint/linter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ linters:
```

If you're sure the property in question is valid,
[submit a request](https://github.com/brigade/scss-lint/issues/new)
[submit a request](https://github.com/sds/scss-lint/issues/new)
to add it to the
[default whitelist](../../../data/properties.txt).

Expand Down Expand Up @@ -1192,7 +1192,7 @@ two colons. Pseudo-classes, like `:hover` and `:first-child`, should be
declared with one colon.

If you're sure the pseudo-element in question is valid,
[submit a request](https://github.com/brigade/scss-lint/issues/new)
[submit a request](https://github.com/sds/scss-lint/issues/new)
to add it to the
[default whitelist](../../../data/pseudo-elements.txt).

Expand Down
4 changes: 2 additions & 2 deletions scss_lint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Gem::Specification.new do |s|
s.license = 'MIT'
s.summary = 'SCSS lint tool'
s.description = 'Configurable tool for writing clean and consistent SCSS'
s.authors = ['Brigade Engineering', 'Shane da Silva']
s.email = ['eng@brigade.com', 'shane@dasilva.io']
s.authors = ['Shane da Silva']
s.email = ['shane@dasilva.io']
s.homepage = SCSSLint::REPO_URL

s.require_paths = ['lib']
Expand Down

0 comments on commit 82b083d

Please sign in to comment.