From d01926885d7d1f6a6da9966f2ce3930d36bea2bf Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Wed, 23 Nov 2011 14:46:32 -0500 Subject: [PATCH] Some comments --- src/stdlib/settings.coffee | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/stdlib/settings.coffee b/src/stdlib/settings.coffee index 869ed4813..553027fb4 100644 --- a/src/stdlib/settings.coffee +++ b/src/stdlib/settings.coffee @@ -1,6 +1,18 @@ fs = require 'fs' {CoffeeScript} = require 'coffee-script' +# Settings file looks like: +# editor: # name of class +# theme: "twilight" +# tabSize: 2 +# softTabs: true +# showInvisibles: false +# +# project: +# ignorePattern: /x|y|z/ +# +# Settings are applied to object x's settings variable by calling applyTo(x) on +# instance of Settings. module.exports = class Settings settings: {}