diff --git a/.gitignore b/.gitignore index 588388b..cfa0915 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,58 @@ +## Special files +_* +.* +*~ +*.lock + +!.gitignore + +## Compiled source +_obj/ +_test/ +target/ + +[568vq].out +*.[568vq] + +*.[ao] +*.dll +*.so + +*.cgo?.* +*.exe +*.prof +*.test + +_testmain.go +go.sum + +## Packages +# It's better to unpack these files and commit the raw source. +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +## Data +*.bin +Icon? + +## Logs and databases +*.db +*.log +*.sqlite +#*.sql + +## Projects + +*.sublime-project +*.sublime-workspace + +## * * * + testdata/conf_out.ini -ini.sublime-project -ini.sublime-workspace testdata/conf_reflect.ini -.idea -/.vscode -.DS_Store diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..68263f6 --- /dev/null +++ b/go.mod @@ -0,0 +1,11 @@ +module github.com/go-ini/ini + +go 1.22.0 + +require github.com/stretchr/testify v1.9.0 + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +)