Skip to content

Commit

Permalink
Added the static site (cont'); Added the SVG logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Anantachai Saothong (Manta) committed Apr 27, 2017
1 parent a1c26d1 commit fcc7502
Show file tree
Hide file tree
Showing 7 changed files with 129 additions and 19 deletions.
35 changes: 21 additions & 14 deletions docs/index.html

Large diffs are not rendered by default.

Binary file removed docs/logo.png
Binary file not shown.
104 changes: 104 additions & 0 deletions docs/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/vscode-format-on-save.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/vscode.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions edge/createFormattingOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ const schema = {
}
},
sortProperties: {
description: 'Can be either <code>false</code> for doing nothing about the CSS property order, <code>"alphabetical"</code> for sorting CSS properties from A to Z, <code>"grouped"</code> for sorting CSS properties according to <a href="https://github.com/SimenB/stylint/blob/master/src/data/ordering.json">Stylint</a>, or an array of property names that defines the property order (for example, <code>["color", "background", "display"]</code>).',
description: 'Can be either <code>false</code> for doing nothing, <code>"alphabetical"</code> for sorting CSS properties from A to Z, <code>"grouped"</code> for sorting CSS properties according to <a href="https://github.com/SimenB/stylint/blob/master/src/data/ordering.json">Stylint</a>, or an array of property names that defines the property order (for example, <code>["color", "background", "display"]</code>).',
oneOf: [
false,
'alphabetical',
Expand Down Expand Up @@ -211,7 +211,7 @@ const schema = {
}
},
alwaysUseNot: {
description: 'Replace <code>!</code> operator with <code>not</code> keyword or vice versa.',
description: 'Replace <code>!</code> operator with <code>not</code> keyword, or vice versa.',
type: 'boolean',
default: false,
example: {
Expand All @@ -236,7 +236,7 @@ const schema = {
}
},
alwaysUseExtends: {
description: 'Convert <code>@extend</code> keyword to <code>@extends</code> keyword or vice versa.',
description: 'Convert <code>@extend</code> keyword to <code>@extends</code> keyword, or vice versa.',
type: 'boolean',
default: false,
example: {
Expand All @@ -251,7 +251,7 @@ const schema = {
}
},
alwaysUseZeroWithoutUnit: {
description: 'Replace <code>0px</code>, <code>0%</code>, <code>0em</code> and so on with <code>0</code> without units or vice versa.',
description: 'Replace <code>0px</code>, <code>0%</code>, <code>0em</code> and so on with <code>0</code> without units, or do nothing.',
type: 'boolean',
default: false,
example: {
Expand Down
1 change: 0 additions & 1 deletion edge/format.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const ordering = require('stylint/src/data/ordering.json')
const _ = require('lodash')

const createFormattingOptions = require('./createFormattingOptions')
const createFormattingOptionsFromStylint = require('./createFormattingOptionsFromStylint')
const createStringBuffer = require('./createStringBuffer')

function format(content, options = {}) {
Expand Down

0 comments on commit fcc7502

Please sign in to comment.